home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / contrib / dvx / inc / x11 / xmu / cvtcache.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-15  |  1.6 KB  |  40 lines

  1. /*
  2.  * $XConsortium: CvtCache.h,v 1.3 89/11/30 18:21:42 rws Exp $
  3.  *
  4.  * Copyright 1989 Massachusetts Institute of Technology
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted, provided
  8.  * that the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name of M.I.T. not be used in advertising
  11.  * or publicity pertaining to distribution of the software without specific,
  12.  * written prior permission.  M.I.T. makes no representations about the
  13.  * suitability of this software for any purpose.  It is provided "as is"
  14.  * without express or implied warranty.
  15.  *
  16.  * M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
  17.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL M.I.T.
  18.  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  19.  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  20.  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
  21.  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  22.  *
  23.  * 
  24.  *                   Public Interfaces
  25.  * 
  26.  * XmuCvtCache *XmuCvtCacheLookupDisplay (dpy)
  27.  *     Display *dpy;
  28.  */
  29.  
  30. #include <X11/Xmu/DisplayQue.h>
  31.  
  32. typedef struct _XmuCvtCache {
  33.     struct {
  34.     char **bitmapFilePath;
  35.     } string_to_bitmap;
  36.     /* add other per-display data that needs to be cached */
  37. } XmuCvtCache;
  38.  
  39. extern XmuCvtCache *_XmuCCLookupDisplay();
  40.